home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / pvm34b3.zip / pvm34b3 / pvm3 / console / myalloc.h < prev    next >
C/C++ Source or Header  |  1997-07-22  |  2KB  |  75 lines

  1.  
  2. /* $Id: myalloc.h,v 1.4 1997/07/09 13:21:10 pvmsrc Exp $ */
  3.  
  4. /*
  5.  *         PVM version 3.4:  Parallel Virtual Machine System
  6.  *               University of Tennessee, Knoxville TN.
  7.  *           Oak Ridge National Laboratory, Oak Ridge TN.
  8.  *                   Emory University, Atlanta GA.
  9.  *      Authors:  J. J. Dongarra, G. E. Fagg, M. Fischer
  10.  *          G. A. Geist, J. A. Kohl, R. J. Manchek, P. Mucci,
  11.  *         P. M. Papadopoulos, S. L. Scott, and V. S. Sunderam
  12.  *                   (C) 1997 All Rights Reserved
  13.  *
  14.  *                              NOTICE
  15.  *
  16.  * Permission to use, copy, modify, and distribute this software and
  17.  * its documentation for any purpose and without fee is hereby granted
  18.  * provided that the above copyright notice appear in all copies and
  19.  * that both the copyright notice and this permission notice appear in
  20.  * supporting documentation.
  21.  *
  22.  * Neither the Institutions (Emory University, Oak Ridge National
  23.  * Laboratory, and University of Tennessee) nor the Authors make any
  24.  * representations about the suitability of this software for any
  25.  * purpose.  This software is provided ``as is'' without express or
  26.  * implied warranty.
  27.  *
  28.  * PVM version 3 was funded in part by the U.S. Department of Energy,
  29.  * the National Science Foundation and the State of Tennessee.
  30.  */
  31.  
  32. /*
  33.  *    myalloc.h
  34.  *
  35.  *    Malloc defines.
  36.  *
  37. $Log: myalloc.h,v $
  38.  * Revision 1.4  1997/07/09  13:21:10  pvmsrc
  39.  * Fixed Author Header.
  40.  *
  41.  * Revision 1.3  1997/01/28  19:13:24  pvmsrc
  42.  * New Copyright Notice & Authors.
  43.  *
  44.  * Revision 1.2  1996/09/26  21:13:45  pvmsrc
  45.  * Spanked the stupid CVS "Id" strings.
  46.  *     - comments for headers, not rcsid's stupid...  :-Q
  47.  *
  48.  * Revision 1.1  1996/09/23  20:25:43  pvmsrc
  49.  * Initial revision
  50.  *
  51.  * Revision 1.3  1994/11/07  20:53:43  manchek
  52.  * include stdlib if available
  53.  *
  54.  * Revision 1.2  1994/06/03  20:01:53  manchek
  55.  * version 3.3.0
  56.  *
  57.  * Revision 1.1  1993/08/30  23:30:32  manchek
  58.  * Initial revision
  59.  *
  60.  */
  61.  
  62. #ifdef HASSTDLIB
  63. #include <stdlib.h>
  64. #endif
  65.  
  66. #define    MY_ALLOC(n,g)        malloc((unsigned)(n))
  67. #define    MY_REALLOC(p,n)        realloc((char*)(p),(unsigned)(n))
  68. #define    MY_FREE(p)            free((char*)(p))
  69.  
  70. #define    TALLOC(n,t,g)        (t*)MY_ALLOC((n)*sizeof(t),(g))
  71. #define    TREALLOC(p,n,t)        (t*)MY_REALLOC(p,(n)*sizeof(t))
  72.  
  73. #define    STRALLOC(s)            strcpy(TALLOC(strlen(s)+1,char,"str"),s)
  74.  
  75.